/* GLOBAL */


*{
  margin:0;
  padding:0;
  box-sizing:border-box;
  font-family:Poppins, sans-serif;

}

body{
  background:#f4f6f9;
}
h3 {
  color:#0b3c5d;
  font-size: 20px;
  font-weight: 500;
     line-height: 1.5;
}


p {
   line-height: 1.5;
  font-size: 15px;
  font-weight: 400;
}

.tour-section{
  padding:80px 40px;
}

.tour-section h2{
  text-align:center;
  margin-bottom:50px;
}

/* GRID */
.tour-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:20px;
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0, 0, 0, 0.692);
}
.tour-card:hover img{
  transform:scale(1.05);
}

/* IMAGE SLIDER */
.card-slider{
  height:320px;
  overflow:hidden;
}

.tour-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:30px;
}

.card-track img{
  min-width:100%;
  height:100%;
  object-fit:cover;
}

/* INFO */
.tour-info{
  padding:20px;
}

/* RESPONSIVE */
@media(max-width:900px){
  .tour-grid{
    grid-template-columns:repeat(2,1fr);
  }
}

@media(max-width:600px){
  .tour-grid{
    grid-template-columns:1fr;
  }
}




.All-tours
{
text-align: center;


}
.All-tours h3
{
  font-size: 40px;
}




/* MOBILE FILTER SCROLL */
@media (max-width: 600px){

  .tour-filter{
    justify-content:flex-start;
    overflow-x:auto;
    flex-wrap:nowrap;
    gap:12px;
    padding:10px 15px;
    scroll-snap-type:x mandatory;
  }

  .tour-filter::-webkit-scrollbar{
    display:none;
  }

  .tour-filter button{
    flex:0 0 auto;
    white-space:nowrap;
    scroll-snap-align:start;
    font-size:14px;
    padding:8px 18px;
  }
}









.tours-hero{
  padding:100px 20px;
  text-align:center;
  background:#062c3f;
  color:#fff;
}

.tour-filter{
  display:flex;
  justify-content:center;
  gap:20px;
  padding:30px;
}

.tour-filter button{
  padding:10px 20px;
  border:none;
  border-radius:25px;
  background:#eee;
  cursor:pointer;
}

.tours-section{
  overflow:hidden;
  padding:60px 0;
}

.tours-track{
  display:flex;
  gap:30px;
  transition:transform .6s ease;
}

.tour-card{
  min-width:320px;
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 30px rgba(0,0,0,0.1);
}

.tour-card img{
  width:100%;
  height:200px;
  object-fit:cover;
}

.tour-info{
  padding:20px;
}

.tour-meta{
  display:flex;
  justify-content:space-between;
  margin:10px 0;
}

.tour-rating{
  color:#ffb703;
  margin-bottom:10px;
}

.tour-btn{
  display:block;
  text-align:center;
  background:#062c3f;
  color:#fff;
  padding:10px;
  border-radius:20px;
  text-decoration:none;
}

/* RESPONSIVE */
@media(max-width:768px){
  .tour-card{min-width:260px;}
}



/* TOURS SECTION */
.tours-section{
  padding:90px 8%;
  background:#fff;
}

.tours-head{
  text-align:center;
  margin-bottom:40px;
}

.tours-head h2{
  font-size:42px;
  margin-bottom:10px;
}

.tours-head p{
  color:#666;
  font-size:16px;
}

/* GRID */
.tours-grid{
  display:grid;
  grid-template-columns:repeat(3,1fr);
  gap:22px;
}

@media(max-width:1000px){
  .tours-grid{ grid-template-columns:repeat(2,1fr); }
}

@media(max-width:650px){
  .tours-grid{ grid-template-columns:1fr; }
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
  transition:transform .25s ease, box-shadow .25s ease;
}

.tour-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}

/* SLIDER */
.tour-slider{
  position:relative;
  height:220px;
  overflow:hidden;
}

.tour-slider input{
  display:none;
}

.tour-track{
  height:100%;
  display:flex;
  width:300%;
  transition:transform .55s ease;
}

.tour-track img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex:0 0 100%;
  transition:transform .35s ease;
}

.tour-card:hover .tour-track img{
  transform:scale(1.04);
}

/* Slide switching (3 slides) */
.tour-slider input:nth-of-type(1):checked ~ .tour-track{ transform:translateX(0%); }
.tour-slider input:nth-of-type(2):checked ~ .tour-track{ transform:translateX(-33.333%); }
.tour-slider input:nth-of-type(3):checked ~ .tour-track{ transform:translateX(-66.666%); }

/* Dots */
.tour-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}

.tour-dots .dot{
  width:10px;
  height:10px;
  border-radius:999px;
  background:rgba(255,255,255,.6);
  cursor:pointer;
  box-shadow:0 8px 20px rgba(0,0,0,.18);
  transition:transform .2s ease, background .2s ease;
}

.tour-dots .dot:hover{
  transform:scale(1.1);
  background:rgba(255,255,255,.95);
}

/* INFO */
.tour-info{
  padding:18px 18px 20px;
}

.tour-info h3{
  font-size:18px;
  margin-bottom:8px;
}

.tour-info p{
  color:#666;
  font-size:14px;
  line-height:1.5;
  margin-bottom:14px;
}

.tour-row{
  display:flex;
  align-items:center;
  justify-content:space-between;
  gap:10px;
}

.tour-price{
  font-weight:700;
  color:#111;
}

.tour-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:#111;
  color:#fff;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease;
}

.tour-btn:hover{
  background:#333;
  transform:translateY(-2px);
}

/* =========================
   DROPDOWN MENU
========================= */

.dropdown{
  position:relative;
}

/* HIDE MENU */
.dropdown-menu{
  position:absolute;
  top:100%;
  left:0;

  min-width:180px;

  background:#062c3f;

  list-style:none;

  padding:0;
  margin:0;

  border-radius:10px;

  overflow:hidden;

  display:none;

  z-index:9999;
}

/* LINKS */
.dropdown-menu li a{
  display:block;
  padding:12px 18px;
  color:#fff;
  text-decoration:none;
  transition:.3s;
}

/* HOVER */
.dropdown-menu li a:hover{
  background:#ffb703;
  color:#000;
}

/* DESKTOP */
@media(min-width:769px){

  .dropdown:hover .dropdown-menu{
    display:block;
  }

}

/* MOBILE */
@media(max-width:768px){

  .dropdown-menu{
    position:static;
    width:100%;
    background:#041f2d;
    display:none;
    text-align:center;
  }

  .dropdown.active .dropdown-menu{
    display:block;
  }

}






/* HEADER */
.site-header{
  position:fixed;
  top:0;
  width:100%;
  z-index:999;
  background:rgba(6,44,63,0.75);
  backdrop-filter:blur(8px);
  padding:18px 60px;
}

.nav-container{
  display:flex;
  align-items:center;
}

/* LEFT LOGO */
.nav-left{
  flex:1;
}

.logo{
  height:45px;
}

/* CENTER MENU */
.nav-menu{
  flex:2;
  display:flex;
  justify-content:center;
}

.nav-menu ul{
  list-style:none;
  display:flex;
  gap:40px;
}

.nav-menu a{
  text-decoration:none;
  color:#fff;
  font-weight:500;
}

/* RIGHT SOCIAL */
.nav-right{
  flex:1;
  display:flex;
  justify-content:flex-end;
  gap:20px;
}

.nav-right a{
  color:#fff;
  text-decoration:none;
  font-size:14px;
}

/* HAMBURGER */
.hamburger{
  display:none;
  font-size:28px;
  color:#fff;
  cursor:pointer;
}

/* MOBILE */
@media(max-width:900px){
  .nav-menu{
    position:absolute;
    top:80px;
    right:0;
    background:#062c3f;
    width:250px;
    padding:30px;
    display:none;
  }

  .nav-menu ul{
    flex-direction:column;
    gap:20px;
  }

  .nav-menu.active{
    display:flex;
  }

  .nav-right{
    display:none;
  }

  .hamburger{
    display:block;
    margin-left:auto;
  }
}


/* Tour Buttons */

.tour-buttons{
  display:flex;
  gap:8px;
  margin-top:12px;
}

.btn-view,
.btn-book{
  flex:1;
  text-align:center;
  padding:6px 0;          /* smaller height */
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:12px;         /* smaller text */
  transition:.3s;
}

.btn-view{
  border:1.5px solid #062c3f;
  color:#062c3f;
}






.tours-new{
  padding:100px 5%;
  background:#f9fbfd;
}

.tours-title{
  text-align:center;
  font-size:38px;
  margin-bottom:60px;
  color:#062c3f;
}

.tours-grid{
  display:grid;
  grid-template-columns:repeat(auto-fit, minmax(300px,1fr));
  gap:30px;
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:14px;
  overflow:hidden;
  box-shadow:0 15px 40px rgba(0,0,0,0.08);
  transition:.3s;
}

.tour-card:hover{
  transform:translateY(-6px);
}

/* IMAGE SLIDER */
.card-slider{
  height:220px;
  overflow:hidden;
  position:relative;
}

.card-track{
  display:flex;
  height:100%;
  transition:transform .6s ease;
}

.card-track img{
  width:100%;
  height:220px;
  object-fit:cover;
}

/* CONTENT */
.tour-content{
  padding:18px;
}

.tour-content h3{
  font-size:18px;
  margin-bottom:6px;
}

.tour-content p{
  font-size:14px;
  color:#555;
}

/* BUTTONS */
.tour-buttons{
  display:flex;
  gap:8px;
  margin-top:12px;
}

.btn-view,
.btn-book{
  flex:1;
  text-align:center;
  padding:7px 0;
  border-radius:6px;
  text-decoration:none;
  font-weight:600;
  font-size:12px;
  transition:.3s;
}

.btn-view{
  border:1.5px solid #062c3f;
  color:#062c3f;
}

.btn-view:hover{
  background:#062c3f;
  color:#fff;
}

.btn-book{
  background:#ffb703;
  color:#000;
}

.btn-book:hover{
  opacity:.85;
}
/* Image slider section */




.image-slider-section {
  padding: 100px 20px;
  background: #f3a908;
}

.slider-container {
  position: relative;
  max-width: 1100px;
  margin: auto;
  overflow: hidden;
  border-radius: 20px;
}

.slider-track {
  display: flex;
  transition: transform 0.8s ease;
}

.slide {
  min-width: 100%;
  position: relative;
}

.slide img {
  width: 100%;
  height: 500px;
  object-fit: cover;
  display: block;
}

/* ARROWS */

.slider-btn {
  position: absolute;
  top: 50%;
  transform: translateY(-50%);
  background: rgba(255,255,255,0.2);
  border: none;
  color: white;
  font-size: 28px;
  padding: 10px 18px;
  cursor: pointer;
  border-radius: 50%;
  backdrop-filter: blur(5px);
  transition: 0.3s;
}

.slider-btn:hover {
  background: rgba(255,255,255,0.4);
}

.prev {
  left: 20px;
}

.next {
  right: 20px;
}

/* DOTS */

.slider-dots {
  position: absolute;
  bottom: 20px;
  left: 50%;
  transform: translateX(-50%);
  display: flex;
  gap: 10px;
}

.dot {
  width: 12px;
  height: 12px;
  background: rgba(255,255,255,0.4);
  border-radius: 50%;
  cursor: pointer;
  transition: 0.3s;
}

.dot.active {
  background: #fff;
}

/* RESPONSIVE */

@media (max-width: 768px) {
  .slide img {
    height: 300px;
  }

  .slider-btn {
    font-size: 20px;
    padding: 8px 14px;
  }
}





/* TOURS SECTION */
.tours-section{
  padding:90px 8%;
  background:#fff;
}

.tours-head{
  text-align:center;
  margin-bottom:40px;
}

.tours-head h2{
  font-size:42px;
  margin-bottom:10px;
}

.tours-head p{
  color:#666;
  font-size:16px;
}

/* GRID */
.tours-grid{
  display:grid;
  grid-template-columns:repeat(3, 1fr);
  gap:22px;
}

@media(max-width: 1000px){
  .tours-grid{ grid-template-columns:repeat(2, 1fr); }
}
@media(max-width: 650px){
  .tours-grid{ grid-template-columns:1fr; }
}

/* CARD */
.tour-card{
  background:#fff;
  border-radius:16px;
  overflow:hidden;
  box-shadow:0 10px 25px rgba(0,0,0,.10);
  transition:transform .25s ease, box-shadow .25s ease;
  position:relative;
}

.tour-card:hover{
  transform:translateY(-8px);
  box-shadow:0 18px 45px rgba(0,0,0,.16);
}

/* SLIDER */
.tour-slider{
  position:relative;
  height:220px;
  overflow:hidden;
}

.tour-track{
  height:100%;
  display:flex;
  transition:transform .55s ease;
}

.tour-track img{
  width:100%;
  height:100%;
  object-fit:cover;
  flex:0 0 100%;
  transition:transform .35s ease;
}

/* Image zoom on hover (nice effect) */
.tour-card:hover .tour-track img{
  transform:scale(1.04);
}

/* Overlay gradient */
.tour-slider::after{
  content:"";
  position:absolute;
  inset:0;
  background:linear-gradient(to top, rgba(0,0,0,.35), rgba(0,0,0,0) 60%);
  pointer-events:none;
}

/* Slider buttons */
.tour-nav{
  position:absolute;
  top:50%;
  transform:translateY(-50%);
  width:40px;
  height:40px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.92);
  box-shadow:0 10px 25px rgba(0,0,0,.20);
  display:grid;
  place-items:center;
  font-size:18px;
  z-index:2;
  transition:transform .2s ease;
}

.tour-nav:hover{ transform:translateY(-50%) scale(1.05); }

.tour-nav.prev{ left:12px; }
.tour-nav.next{ right:12px; }

/* Dots */
.tour-dots{
  position:absolute;
  left:50%;
  bottom:12px;
  transform:translateX(-50%);
  display:flex;
  gap:8px;
  z-index:2;
}

.tour-dot{
  width:9px;
  height:9px;
  border-radius:999px;
  border:0;
  cursor:pointer;
  background:rgba(255,255,255,.55);
}

.tour-dot.active{
  background:rgba(255,255,255,.95);
}

/* INFO */
.tour-info{
  padding:18px 18px 20px;
}

.tour-title{
  font-size:18px;
  margin-bottom:8px;
}

.tour-meta{
  color:#666;
  font-size:14px;
  line-height:1.5;
  margin-bottom:14px;
}

.tour-cta-row{
  display:flex;
  gap:10px;
  align-items:center;
  justify-content:space-between;
}

.tour-price{
  font-weight:700;
  color:#111;
}

.tour-btn{
  display:inline-block;
  padding:10px 14px;
  border-radius:10px;
  background:#111;
  color:#fff;
  text-decoration:none;
  transition:transform .2s ease, background .2s ease;
}

.tour-btn:hover{
  background:#333;
  transform:translateY(-2px);
}


/* Phone at bottom-left */
.floater.phone {
  bottom: 20px;
  left: 20px;
  background-color: #007BFF;
}

/* WhatsApp at bottom-right */
.floater.whatsapp {
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
}


/* =========================
   FOOTER
========================= */
.site-footer {
  background: #062c3f;
  color: #fff;
  padding: 60px 20px 20px;
}

.footer-top {
  display: flex;
  align-items: flex-start;
  justify-content: space-between;
  gap: 40px;
  flex-wrap: wrap;
}

.footer-logo img {
  width: 140px;
}

.footer-wrap {
  display: flex;
  gap: 40px;
  flex: 1;
  flex-wrap: wrap;
}

.footer-col {
  min-width: 180px;
}

.footer-col h4,
.footer-col h3 {
  margin-bottom: 15px;
}

.footer-col ul {
  list-style: none;
  padding: 0;
}

.footer-col ul li {
  margin-bottom: 8px;
}

.footer-col a {
  color: #ccc;
  text-decoration: none;
}

.footer-col a:hover {
  color: #fff;
}

.footer-image img {
  width: 80px;
  border-radius: 10px;
 
}

.footer-bottom {
  text-align: center;
  margin-top: 40px;
  border-top: 1px solid #333;
  padding-top: 15px;
  font-size: 14px;
}


/* RESPONSIVE */
@media (max-width: 768px) {

  .footer-top {
    flex-direction: column;
    align-items: center;
    text-align: center;
  }

  .footer-wrap {
    justify-content: center;
  }

  .footer-image img {
    margin-top: 20px;
  }

}





.site-header {
  transition: 0.3s;
}

.site-header.scrolled {
  background: black;
}

.nav-menu {
  transition: 0.3s;
}

.nav-menu.active {
  display: block;
}




html {
  scroll-behavior: smooth;
}



/* Common styling for floaters */
/* Common styling for floating buttons */
.floater {
  position: fixed;
  padding: 14px;
  border-radius: 50%;
  color: white;
  font-size: 24px;
  text-align: center;
  z-index: 1000;
  box-shadow: 0 2px 6px rgba(0,0,0,0.3);
  text-decoration: none;
  transition: transform 0.2s;
}

.floater:hover {
  transform: scale(1.2);
}

/* Phone at bottom-left */
.floater.phone {
  bottom: 20px;
  left: 20px;
  background-color: #007BFF;
}

/* WhatsApp at bottom-right */
.floater.whatsapp {
  bottom: 20px;
  right: 20px;
  background-color: #25D366;
}



/* HERO */
.about-gallery{
  padding: 90px 8%;
  background: #f8f8f8;
}

.about-gallery-header{
  max-width: 700px;
  margin: 0 auto 50px;
  text-align: center;
}

.about-gallery-tag{
  font-size: 14px;
  letter-spacing: 2px;
  text-transform: uppercase;
  color: #777;
  margin-bottom: 10px;
}

.about-gallery-header h2{
  font-size: 42px;
  line-height: 1.2;
  margin-bottom: 15px;
  color: #111;
}

.about-gallery-header p{
  font-size: 16px;
  line-height: 1.7;
  color: #666;
}

.about-gallery-grid{
  display: grid;
  grid-template-columns: repeat(4, 1fr);
  grid-auto-rows: 170px;
  gap: 18px;
}

.gallery-item{
  position: relative;
  overflow: hidden;
  border-radius: 18px;
  box-shadow: 0 10px 30px rgba(0,0,0,0.10);
  background: #ddd;
}

.gallery-item img{
  width: 100%;
  height: 100%;
  object-fit: cover;
  display: block;
  transition: transform 0.6s ease;
}

.gallery-item::after{
  content: "";
  position: absolute;
  inset: 0;
  background: linear-gradient(to top, rgba(0,0,0,0.28), rgba(0,0,0,0.05));
  opacity: 0;
  transition: opacity 0.4s ease;
}

.gallery-item:hover img{
  transform: scale(1.08);
}

.gallery-item:hover::after{
  opacity: 1;
}

/* Layout variations */
.gallery-item.large{
  grid-column: span 2;
  grid-row: span 2;
}

.gallery-item.medium{
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item.small{
  grid-column: span 1;
  grid-row: span 1;
}

.gallery-item.tall{
  grid-column: span 1;
  grid-row: span 2;
}

.gallery-item.wide{
  grid-column: span 2;
  grid-row: span 1;
}

/* Tablet */
@media (max-width: 991px){
  .about-gallery-grid{
    grid-template-columns: repeat(2, 1fr);
    grid-auto-rows: 180px;
  }

  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small,
  .gallery-item.tall,
  .gallery-item.wide{
    grid-column: span 1;
    grid-row: span 1;
  }

  .gallery-item.large{
    grid-column: span 2;
    grid-row: span 2;
  }

  .gallery-item.wide{
    grid-column: span 2;
  }

  .about-gallery-header h2{
    font-size: 34px;
  }
}

/* Mobile */
@media (max-width: 600px){
  .about-gallery{
    padding: 70px 5%;
  }

  .about-gallery-grid{
    grid-template-columns: 1fr;
    grid-auto-rows: 220px;
  }

  .gallery-item.large,
  .gallery-item.medium,
  .gallery-item.small,
  .gallery-item.tall,
  .gallery-item.wide{
    grid-column: span 1;
    grid-row: span 1;
  }

  .about-gallery-header h2{
    font-size: 28px;
  }
}


/* Music*/

#music-btn {
  position: fixed;
  bottom: 20px;
  right: 20px;
  background: #ffb703;
  color: #000;
  border: none;
  padding: 12px 20px;
  border-radius: 30px;
  cursor: pointer;
  font-weight: bold;
  z-index: 9999;
}



*{
margin:0;
padding:0;
box-sizing:border-box;
}

body{
font-family:Arial,sans-serif;
background:#f5f7fb;
color:#222;
line-height:1.6;
}

.container{
max-width:1200px;
margin:auto;
padding:0 20px;
}

.tour-hero{
height:60vh;
background:linear-gradient(rgba(0,0,0,.45),rgba(0,0,0,.55)),
url('https://images.unsplash.com/photo-1507525428034-b723cf961d3e')
center/cover;
display:flex;
align-items:center;
justify-content:center;
text-align:center;
color:#fff;
}

.hero-content{
max-width:800px;
padding:20px;
}

.subtitle{
text-transform:uppercase;
letter-spacing:3px;
font-size:14px;
}

.hero-content h1{
font-size:56px;
margin:15px 0;
}

.tour-intro{
padding:80px 0 40px;
text-align:center;
}

.tour-intro h2{
font-size:38px;
margin-bottom:15px;
}

.tour-intro p{
max-width:700px;
margin:auto;
color:#666;
}

.product-widget-section{
padding:30px 0 80px;
}

.widget-card{
background:#fff;
padding:30px;
border-radius:20px;
box-shadow:0 5px 25px rgba(0,0,0,.08);
}

.bokunWidget{
width:100%;
}

.tour-benefits{
padding:40px 0 80px;
}

.tour-benefits h2{
text-align:center;
margin-bottom:40px;
font-size:38px;
}

.benefits-grid{
display:grid;
grid-template-columns:repeat(3,1fr);
gap:25px;
}

.benefit-card{
background:#fff;
padding:30px;
border-radius:16px;
box-shadow:0 5px 20px rgba(0,0,0,.08);
text-align:center;
}

.benefit-card h3{
margin-bottom:10px;
}

@media(max-width:768px){

.hero-content h1{
font-size:38px;
}

.benefits-grid{
grid-template-columns:1fr;
}

.widget-card{
padding:15px;
}

}
